home *** CD-ROM | disk | FTP | other *** search
/ NetGuide 2004 March / NETGUIDN0403.iso / pc / featured / Windows / orgcdfull.exe / setup_su.exe / {app} / Templates / Basic Web Site.dax < prev    next >
Encoding:
OrangeCD theme  |  2003-07-23  |  3.5 KB  |  111 lines

  1. /*
  2.     Basic Web Site.dax
  3.     Copyright (c) Firetongue Software, 1997-2003
  4. */
  5.  
  6. GROUPBY["Grouping field"]                    : field = artistsort;
  7. SORTBY1["Sorting field 1"]                    : field = artistsort;
  8. SORTBY2["Sorting field 2"]                    : field = title;
  9. SORTBY3["Sorting field 3"]                    : field = year;
  10. COVERSIZE["Cover size (pixels)"]            : int = 170;
  11.  
  12. BGCOLOR        ["Background color"]            : color = #FFFFFF;
  13. TEXTCOLOR    ["Normal text color"]            : color = #000000;
  14. LINKCOLOR    ["Link color"]                    : color = #0000FF;
  15. VLINKCOLOR    ["Visited link color"]            : color = #800080;
  16.  
  17. TEXTFONT    ["Normal font"]                    : font = "small Times New Roman";
  18. HEADERFONT    ["Header font"]                    : font = "large Times New Roman";
  19.  
  20. ::start/web
  21.  
  22. <html>
  23. <head>
  24. <!--[CharSet/]-->
  25. <title>My music collection</title>
  26. <style><!--
  27. body,td,a { font: $TEXTFONT }
  28. h2 { font: $HEADERFONT }
  29. //--></style>
  30. </head>
  31. <body bgcolor=$BGCOLOR text=$TEXTCOLOR link=$LINKCOLOR vlink=$VLINKCOLOR>
  32. <h2><b>My music collection</b></h2>
  33. Albums grouped by <!--[FieldName($GROUPBY)/]-->:
  34. <ul>
  35.     <!--[Group($GROUPBY)]-->
  36.         <li><!--[GroupPageLink]--><!--[GroupField]-->??<!--[/GroupField]--><!--[/GroupPageLink]-->
  37.     <!--[/Group]-->
  38. </ul>
  39. Total: <!--[GroupCount/]--> group(s).
  40. <hr>
  41. <!-- please support OrangeCD by keeping this link. Thank you! -->
  42. <i>Page generated by OrangeCD - <a href="http://www.firetongue.com"><i>ultimate music catalog software</i></a>.</i>
  43. </body>
  44. </html>
  45.  
  46. ::group/web
  47.  
  48. <html>
  49. <head>
  50. <!--[CharSet/]-->
  51. <title><!--[GroupField]-->My music collection<!--[/GroupField]--></title>
  52. <style><!--
  53. body,td,a { font: $TEXTFONT }
  54. h2 { font: $HEADERFONT }
  55. //--></style>
  56. </head>
  57. <body bgcolor=$BGCOLOR text=$TEXTCOLOR link=$LINKCOLOR vlink=$VLINKCOLOR>
  58. <!--[RootPageLink]-->Back to Top Level<!--[/RootPageLink]-->
  59. <hr>
  60. <h2><b><!--[GroupField]-->My music collection<!--[/GroupField]--></b></h2>
  61. <ul>
  62.     <!--[Album(all,$SORTBY1,$SORTBY2,$SORTBY3)]-->
  63.         <li><!--[AlbumPageLink]--><!--[Artist]-->Artist<!--[/Artist]--> - <!--[Title]-->Title<!--[/Title]--><!--[/AlbumPageLink]-->
  64.     <!--[/Album]-->
  65. </ul>
  66. Total: <!--[AlbumCount/]--> album(s).
  67. <hr>
  68. <i>Page generated by OrangeCD - <a href="http://www.firetongue.com"><i>ultimate music catalog software</i></a>.</i>
  69. </body>
  70. </html>
  71.  
  72. ::album/web
  73.  
  74. <html>
  75. <head>
  76. <!--[CharSet/]-->
  77. <title><!--[Artist]-->Artist<!--[/Artist]--> - <!--[Title]-->Title<!--[/Title]--></title>
  78. <style><!--
  79. body,td,a { font: $TEXTFONT }
  80. h2 { font: $HEADERFONT }
  81. //--></style>
  82. </head>
  83. <body bgcolor=$BGCOLOR text=$TEXTCOLOR link=$LINKCOLOR vlink=$VLINKCOLOR>
  84. <!--[RootPageLink]-->Back to Top Level<!--[/RootPageLink]--> | <!--[GroupPageLink]-->Back to <!--[GroupField]-->group field<!--[/GroupField]--><!--[/GroupPageLink]-->
  85. <hr>
  86. <h2><b><!--[Artist]-->Artist<!--[/Artist]--></b><br><!--[Title]-->Title<!--[/Title]--></h2>
  87. <table><tbody><tr>
  88. <td valign=top><!--[Cover($COVERSIZE)/]-->   </td>
  89. <td valign=top>
  90. <!--[Label/]--> <!--[Number/]-->
  91. <p>
  92. <b>Category:</b> <!--[Category/]--><br>
  93. <b>Format:</b> <!--[Format/]--><br>
  94. <b>Genre:</b> <!--[Genre/]--><br>
  95. <b>Release date:</b> <!--[ReleaseDate/]--><br>
  96. </td></tr></table>
  97. <p>
  98. <b>Track listing:</b><br>
  99. <!--[Volume]-->
  100.     <!--[VolumeName/]-->
  101.     <ol>
  102.         <!--[Track]-->
  103.             <li><b><!--[TrackTitle/]--></b> <i><!--[TrackArtist/]--></i> <!--[TrackTime/]-->
  104.         <!--[/Track]-->
  105.     </ol>
  106. <!--[/Volume]-->
  107. <b>Total time:</b> <!--[AlbumTime/]-->
  108. <hr>
  109. <i>Page generated by OrangeCD - <a href="http://www.firetongue.com"><i>ultimate music catalog software</i></a>.</i>
  110. </html>
  111.